home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 710 b | 30 lines | [TEXT/CWIE] |
- // ===========================================================================
- // ColumnGraphWindow.h Derived heavily from the Dashboard Starter
- // ===========================================================================
-
- #pragma once
- #include "oofColumnGraph.h"
- //#include "oofile.hpp"
- #include "CPlotPane.h"
-
- class LCommander;
- class dbView;
-
- class ColumnGraphWindow {
- public:
- ColumnGraphWindow(LCommander*, dbView *theView, StringPtr theTitle,
- unsigned long yAxisLength=0);
- virtual ~ColumnGraphWindow();
-
- void DoPrinting();
-
- protected:
- LWindow* mDisplayWindow;
- CPlotPane* PlotView;
- oofColumnGraph* mColumnGraphPtr;
-
- public:
- static void RegisterClass();
- };
-
-